SubFlowCall
The SubFlowCall class represents a step in a workflow where a sub-flow is called. It allows a workflow to invoke another workflow or sub-flow and return values from the sub-flow.
Properties
Name | Description |
---|---|
Key | A unique identifier for the workflow step. |
WorkflowCodeInstance | The workflow code instance associated with the flow object. |
CachedDMObjects | The cached document management objects related to the flow object. |
SubFlowObject | Gets or sets the sub-flow object metadata. Represents the sub-flow being invoked by the SubFlowCall step. |
TypeCode | The type code associated with the flow object. |
ReturnValues | Gets or sets the list of return values from the sub-flow that was invoked. These values can be used later in the workflow. |
Name | Name for the workflow step. |
Caption | The caption dictionary representing localized captions for the flow object. |
Constructors
Name | Description |
---|---|
SubFlowCall(name, workflowData, workflowCodeInstance) | Constructor for the SubFlowCall class. Initializes a new instance of the SubFlowCall class. |
SubFlowCall(name, workflowData, workflowCodeInstance) | Constructor for the SubFlowCall class. Initializes a new instance of the SubFlowCall class. |
Methods
Name | Description |
---|---|
Initialize() | Initializes the SubFlowCall step. This method is an implementation of the abstract Initialize method from the base class. |
Events
Name | Description |
---|---|
OnBeforeExecution(sender, args) | Occurs before the execution of the workflow step. |
OnAfterExecution(sender, args) | Occurs after the execution of the workflow step. |
Generic Types
Name | Description |
---|---|
TProperties | Generic type of properties. |